/*--------------------------------*- C++ -*----------------------------------*\
  =========                 |
  \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox
   \\    /   O peration     | Website:  https://openfoam.org
    \\  /    A nd           | Version:  6
     \\/     M anipulation  |
\*---------------------------------------------------------------------------*/
FoamFile
{
    version     2.0;
    format      ascii;
    class       dictionary;
    object      blockMeshDict;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //

convertToMeters 1;

vertices
(
	(0.0 0.0 0.0) // zeroth 
	(-1.0 0.0 0.0)
	(1.0 1.0 0)
	(0.0 1.0555555 0)
	(0.0 0.0 1.0)
	(1.0 0.0 1.0)
	(1.0 1.0 1.0)
	(0.0 1.0 1.0)
(                                                                                                                                      
);

blocks
(
);

edges
(
);

boundary
(
    fuel
    {
        type patch;
        faces
        (
			
        );
    }
    primary_air
    {
        type patch;
        faces
        (
			
        );
    }
    secondary_air_RHS
    {
		type patch;
		faces
			(
				
			);
    }
    secondary_air_LHS
    {
		type patch;
		faces
			(
				
			);
    }
    outlet
    {
        type patch;
        faces
        (
			
        );
    }
    frontAndBack
    {
        type empty;
        faces
        (	
			
        );
    }
);

mergePatchPairs
(
);

// ************************************************************************* //